home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 52
/
Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso
/
Aminet
/
util
/
moni
/
Scout-src.lha
/
netinclude
/
utime.h
< prev
next >
Wrap
C/C++ Source or Header
|
2002-09-16
|
498b
|
20 lines
#ifndef UTIME_H
#define UTIME_H \
"$Id: utime.h,v 1.1.1.1 2001/11/26 22:21:13 tboeckel Exp $"
/*
* Definitions and prototype for the utime() (in the net.lib)
*
* Copyright © 1994 AmiTCP/IP Group,
* Network Solutions Development, Inc.
* All rights reserved.
*/
struct utimbuf {
time_t actime; /* Access time */
time_t modtime; /* Modification time */
};
int utime(const char *, const struct utimbuf *);
#endif /* !UTIME_H */